home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue25 / compress / COMPRESS.ZIP / BMTEST.DPR < prev    next >
Encoding:
Text File  |  1997-07-09  |  216 b   |  16 lines

  1. program bmtest;
  2.  
  3. uses
  4.   Forms,
  5.   bmtestf in 'bmtestf.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10. {$IFDEF WIN32}
  11.   Application.Initialize;
  12. {$ENDIF}
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.